home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #include <vcl\vcl.h>
- #pragma hdrstop
- //---------------------------------------------------------------------------
- USEFORM("CTMain.cpp", MainForm);
- USERES("ComboTst.res");
- //---------------------------------------------------------------------
- WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
- {
- Application->Initialize();
- Application->Title = "ComboBox Test";
- Application->CreateForm(__classid(TMainForm), &MainForm);
- Application->Run();
-
- return 0;
- }
- //---------------------------------------------------------------------------
-